Navigation

  • index
  • next |
  • previous |
  • PyHowTo documentation »
  • Basic »
  • If and Loop »

Table of Contents

Python v3.7 HowTos:

  • ----------------
  • Recursion
  • Backtracking
  • Dynamic Programming
  • Greedy
  • Sort
  • Binary Search
  • Depth First Search [DFS]
  • Breadth First Search [BFS]
  • Binary Search Tree [BST]
  • ----------------
  • Array
  • String
  • Heap
  • Stack
  • Queue
  • Tree
  • Linked List
  • Hash Table
  • Bit Manipulation
  • Two Pointers
  • Math
  • Decorator
  • ----------------
  • Basic
  • Intermediate
  • Advanced
  • Interview
  • ----------------
  • Spark
  • Tkinter
  • Turtle
  • Games
  • Web
  • ----------------
  • About
  • History

Previous topic

Print alphabet pattern ‘l’

Next topic

Print alphabet pattern ‘o’

Quick search

Print alphabet pattern ‘m’¶

Print alphabet pattern ‘m’.

Expected output:
  0 1 2 3 4 5 6
0   *       *
1   *       *
2   * *   * *
3   *   *   *
4   *       *
5   *       *
6   *       *
result_str = ""

for row in range(0, 7):
    for column in range(0, 7):
        if (column == 1 or column == 5 or
            (row == 2 and
              (column == 2 or column == 4)
            ) or
            (row == 3 and column == 3)
           ):
            result_str += "* "
        else:
            result_str += "  "

    result_str += "\n"

print(result_str)

Output:

*       *
*       *
* *   * *
*   *   *
*       *
*       *
*       *

See also

https://www.w3resource.com/python-exercises/python-conditional-exercise-22.php

Navigation

  • index
  • next |
  • previous |
  • PyHowTo documentation »
  • Basic »
  • If and Loop »
© Copyright 2020, Sergiy Zaytsev, szaytsev@hotmail.com. Created using Sphinx 2.3.0.